home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / mallcrawl.swf / scripts / frame_1 / PlaceObject2_160_2 / CLIPACTIONRECORD onClipEvent(load).as
Text File  |  2007-09-28  |  394b  |  16 lines

  1. onClipEvent(load){
  2.    var percent = 0;
  3.    var percent_txt = percent + "%";
  4.    onEnterFrame = function()
  5.    {
  6.       percent = Math.round(_parent.getBytesLoaded() / _parent.getBytesTotal() * 100);
  7.       percent_txt = percent + "%";
  8.       if(percent >= 100)
  9.       {
  10.          percent_txt = "100%";
  11.          _parent.gotoAndStop("intro");
  12.          delete onEnterFrame;
  13.       }
  14.    };
  15. }
  16.